C# |
---|
public String AddLine(String text = null) |
C# |
---|
// Defaults: IndentCharCount = 2, LineLimit = 80, WrapEnabled = false. var hb = new HTMLBuilder(); // Example Method: // Adds text that ends with a newline. hb.AddLine("This is an appended line."); hb.AddText(":"); var result = hb.ToString(); // result: // This is an appended line. // : |